home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / docs / help / adosguide.lha / ADOS Guide / ADOS commands / Request File < prev    next >
Encoding:
Text File  |  1997-10-21  |  620 b   |  33 lines

  1.                           --AMIGADOS GUIDE V2.0--
  2.                                 REQUESTFILE
  3.  
  4.  
  5.    USE:
  6.    The RequestFile command enables the user to call up a File Requester
  7.    which will let you select any file or directory.
  8.  
  9.    PATH:
  10.    C:
  11.  
  12.    SYSTEM:
  13.    3.0
  14.  
  15.    EXAMPLES:
  16.    1>REQUESTFILE >ENV: FileName TITLE="File Requester 1"
  17.  
  18.    NOTES:
  19.    RequestFile can be integrated with the RequestChoice command thus:
  20.  
  21.    LAB Start
  22.  
  23.    REQUESTFILE >ENV: FileName TITLE="File Requester 1"
  24.  
  25.    REQUESTCHOICE >ENV: YesNo "" "You chose:$FileName*nDo it
  26.    again?"  "YES" "NO"
  27.  
  28.    IF $YesNo EQ "1"
  29.  
  30.    SKIP start BACK
  31.  
  32.    ENDIF
  33.